home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ian & Stuart's Australian Mac 1993 September
/
September 93.iso
/
Archives
/
Comunications
/
telecom
/
Telecom Utilities
/
DialScript
/
Examples
/
DelayNext.ds
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-11-01
|
379 b
|
15 lines
|
[
TEXT/dIsR
]
script DelayNext
-- Execution begins at the first state-- "one" in this case
state one
display "I'll wait ten seconds and then go to the next state\r";
delay 10;
next two;
display "This statement never gets executed\r";
end;
state two
display "I am at state two\r";
end; -- Script terminates when it hits "end"
end;